home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-03-28 | 1.9 KB | 86 lines |
- ARCH=NeXT
- CC = cc++
- CFLAGS = -O -bsd -fstrength-reduce -finline-functions -I/usr/include/g++
- POBJECTS = patch.o xset.o xmenu.o xpanel.o xselect.o xevent.o xparam.o \
- xdata.o inst.o unit_gen.o tree.o list.o misc.o graph.o \
- linker.o soundfile.o nutree.o
- LXTLIB= /usr/local/src/lxt/liblxt_$(ARCH).a
- LIBS= $(LXTLIB) -lX11 -lm
-
- # $Header: makefile,v 1.3 91/02/13 09:48:42 mara Exp $
- #
- # Written by Mara Helmuth
- #
- # Description: Makefile for Cmix X graphical interface
- #
- # $Log: makefile,v $
- # Revision 1.3 91/02/13 09:48:42 mara
- # dependencies
- #
- # Revision 1.2 90/09/05 22:15:02 mara
- # deleted ntree
- #
- # Revision 1.1 90/08/27 17:13:19 mara
- # Initial revision
- #
- # Revision 1.6 90/05/18 23:25:38 mara
- # xdata.c now has data window
- #
- # Revision 1.5 90/05/13 15:49:00 mara
- # xset.c split into xset.c, xselect.c,
- # xevent.c, and xdata created to handle data
- # for ugens
- #
- # Revision 1.4 90/02/21 13:49:12 mara
- # With tree and unit_gen files
- #
- # Revision 1.3 90/02/11 16:23:52 mara
- # X functions divided into 3 files:
- # xset.c, xmenu.c and xpanel.c
- # reset_choice works.
- #
- # Revision 1.2 90/01/30 11:10:53 mara
- # patchmix
- #
- # Revision 1.1 90/01/21 12:47:29 mara
- # Initial revision
- #
-
- patchmix: $(POBJECTS)
- $(CC) -o $@ $(POBJECTS) $(LIBS)
- patchmix
-
- patch.o: patch.c plus.h struct.h x.h
-
- graph.o: graph.c graph.h plus.h struct.h x.h
-
- inst.o: inst.c inst.h plus.h struct.h x.h
-
- unit_gen.o: unit_gen.c unit_gen.h plus.h struct.h x.h
-
- tree.o: tree.c tree.h plus.h struct.h x.h
-
- nutree.o: nutree.c nutree.h plus.h struct.h x.h
-
- list.o: list.c list.h plus.h struct.h x.h
-
- misc.o: misc.c misc.h plus.h struct.h x.h
-
- soundfile.o: soundfile.c plus.h soundfile.h struct.h x.h
-
- linker.o: linker.c plus.h struct.h x.h
-
- xset.o: xset.c struct.h x.h
-
- xevent.o: xevent.c x.h struct.h
-
- xselect.o: xselect.c x.h struct.h
-
- xmenu.o: xmenu.c x.h struct.h
-
- xpanel.o: xpanel.c x.h struct.h
-
- xparam.o: xparam.c x.h struct.h
-
- xdata.o: xdata.c x.h struct.h
-